.top-head{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.66);
  height: 80px;
  z-index: 9999;
  width: 100%;
}
.logo{
  float: left;
  width: 15%;

}
.logo img{
  display: block;
  padding: 10px 0;
  width: 165px;
    margin: auto;
}
.top-right{
  width: 84%;
  display: flex;
  justify-content: space-between;
}
.nav {
  width:75%;
}


.nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none; /* 去除默认样式 */
}


.nav ul li {
  position: relative;
  list-style: none;
  text-align: center;
}

.nav ul li a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 18px;
  padding: 0 20px; 
  line-height: 80px;
  text-decoration: none; 
}

.nav ul li:hover a {
  color: #1e90c7;
}

/* active 的链接颜色 */
.nav ul li.active a {
  color: #1e90c7;
}




.nav ul li.has-children .submenu {
  display: none;          /* 默认隐藏 */
  position: absolute;     /* 绝对定位于父容器(当前 li) */
  top: 100%;              /* 紧贴父容器底部，可改成 top: 80px; 若行高就是80px */
  left: 0%;                /* 与父容器左侧对齐 */
  background-color:rgba(0, 0, 0, 0.66); /* 子菜单背景色 */
  min-width: 120px;       /* 下拉菜单最小宽度，可酌情调整 */
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;       /* 去除子菜单列表默认样式 */
}

/* 2) 鼠标悬停时展开子菜单 */
.nav ul li.has-children:hover .submenu {
  display: block;
}

/* 3) 子菜单里的每个链接 */
.nav ul li.has-children .submenu li a {
  display: block;
  line-height: 40px;    /* 二级菜单行高 */
  padding: 0 20px;      /* 左右间距 */
  color: #fff;
  font-size: 16px;
  background-color: #333;
  text-decoration: none;
  white-space: nowrap;  /* 防止文字过长时自动换行 */
}

/* 4) 鼠标悬停子菜单时的效果 */
.nav ul li.has-children .submenu li:hover > a {
  background-color: #444;
  color: #1e90c7;
}

.top-link{
  width: 25%;
  display: flex;
  align-items: center;
  margin-left: 15px;

}
.ali{
 width: 230px;
 padding: 0 20px;
font-size: 32px;
color: #fff;
 position:relative;   
}

.ali::before {
    content: url('/static/pc/images/f4.png'); /* 使用content属性和url函数设置图标路径 */
    position: absolute; /* 绝对定位，相对于父元素 */
    left: 0px; /* 图标位于元素的左侧 */
    top: 50%; /* 垂直居中 */
    transform: translateY(-50%); /* 调整垂直居中位置 */
}

.shipin{
  width: 30px;
  height: 30px;
  background: url("../images/video.png") no-repeat center center;
  margin-left: 18px;
  position: relative;
  cursor: pointer;
}
.shipin:hover{
  background: url("../images/video1.png") no-repeat center center;
}
.sp{
  position: absolute;
  width: 120px;
  height: 145px;
  background: #fff;
  border-radius: 8px;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 100;
}
.sp img{
  display: block;
  max-width: 100%;
}
.sp p{
  text-align: center;
  font-size: 13px;
  color: #565656;
}
.shipin:hover .sp{
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
  top: 40px;
}
.weixin{
  width: 30px;
  height: 30px;
  background: url("../images/wx.png") no-repeat center center;
  margin-left: 18px;
  position: relative;
  cursor: pointer;
}
.weixin:hover{
  background: url("../images/wx1.png") no-repeat center center;
}
.wx{
  position: absolute;
  width: 120px;
  height: 145px;
  background: #fff;
  border-radius: 8px;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 100;
}
.wx img{
  display: block;
  max-width: 100%;
}
.wx p{
  text-align: center;
  font-size: 13px;
  color: #565656;
}
.weixin:hover .wx{
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
  top: 40px;
}
.douyin{
  width: 30px;
  height: 30px;
  background: url("../images/douyin.png") no-repeat center center;
  margin-left: 18px;
  position: relative;
  cursor: pointer;
}
.douyin:hover{
  background: url("../images/douyin-1.png") no-repeat center center;
}
.dy{
  position: absolute;
  width: 120px;
  height: 145px;
  background: #fff;
  border-radius: 8px;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 100;
}
.dy img{
  display: block;
  max-width: 100%;
}
.dy p{
  text-align: center;
  font-size: 13px;
  color: #565656;
}
.douyin:hover .dy{
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
  top: 40px;
}
.caidan{
  width: 89px;
  height: 30px;
  background: url("../img/menu1.png") no-repeat center center;
  margin-left: 18px;
  position: relative;
  cursor: pointer;
  background-size: contain!important;
  display: none;
}
.caidan.on{
  background: url("../img/menu1.png") no-repeat top right;
}

.daohang{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  transition: all .5s ease 0s;
  transform: translate(0,-100%);
  z-index:998;
  padding: 0 2%;
}
.daohang ul{
  position: absolute;
  z-index: 9999;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: space-between;
  width: 80%;
}
.daohang ul li>a{
  color: #1e90c7;
  font-size: 20px;
  font-weight: bold;
}
.daohang ul li .nav-erji{
  margin-top: 20px;
}
.daohang ul li .nav-erji>a{
  font-size: 16px;
  color: #fff;
  display: block;
  line-height:35px;
}
.daohang ul li .nav-erji>a:hover{
  color: #1e90c7;
}
.daohang.on{
  opacity: 1;
  transform: translate(0,0);
}

/*banner*/
.banner{
  width: 100%;
  height: 42.3vw;
}
.c-banner1 {
  background: #fff;
  height: 100%;
  position: relative;
}


.c-banner1 .swiper-slide {
  position: relative;
  overflow: hidden
}

.c-banner1 .swiper-slide img {
  width: 100%;
  -webkit-transition: all 7s;
  transition: all 7s;
  object-fit: cover;
  height: 100%;
}

.c-banner1 .swiper-slide .c-bg2 {
  display: none;
  height: 332px
}

.c-banner1 .swiper-slide .c-wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  background: url(../images/mbl.png) repeat;
  color: #fff;
  align-items: center
}

.c-banner1 .swiper-slide .c-wrap .c-title {
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  font-size: 80px;
  line-height: 100px
}

.c-banner1 .swiper-slide .c-wrap .c-text {
  padding: 30px 0 75px;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  font-size: 40px;
  line-height: 56px
}

.c-banner1 .swiper-pagination-bullet {
  opacity: 1
}

.c-banner1 .c-dot {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 1600px;
  z-index: 100;
}

.c-banner1 .swiper-pagination {
  position: relative;
  text-align: left;
}

.b-text{
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 1600px;
  left: 50%;
  text-align: left;
}
.b-text h3{
  color: #fff;
  font-size:50px;
  font-weight: bold;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s;
  transition-delay: 0.4s;
  padding-bottom: 50px;
}
.b-text span{
  color: #fff;
  font-size:32px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s;
  transition-delay: 0.5s;
  position: relative;
  font-weight: bold;
}
.b-text span:after{
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height:17px;
  background: rgba(240,130,0,0.6);
  bottom: -5px;
  z-index: -1;
}
.b-text p{
  color: #fff;
  font-size: 22px;
  padding-top:10px;
  font-weight: lighter;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s;
  transition-delay: 0.6s;
  line-height: 40px;
}
.banner .swiper-slide-active .b-text h3 {
  transform: translateY(0);
  opacity: 1;
}
.banner .swiper-slide-active .b-text span {
  transform: translateY(0);
  opacity: 1;
}
.banner .swiper-slide-active .b-text p {
  transform: translateY(0);
  opacity: 1;
}
.loading {
  position: relative;
  margin: 0 5px;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.2);
  background: 0 0;
  box-sizing: border-box;
}

.loading.swiper-pagination-bullet-active {
  border-color: rgba(255,255,255,.2)
}

.loading .c-progress {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: none;
  text-align: center;
  line-height: 120px
}

.loading.swiper-pagination-bullet-active .c-progress {
  background-color: #fff
}

.loading .left,.loading .right {
  position: absolute;
  top: -2px;
  left: -2px;
  overflow: hidden;
  width: 17px;
  height: 34px;
  opacity: 0
}

.loading.swiper-pagination-bullet-active .left,.loading.swiper-pagination-bullet-active .right {
  opacity: 1
}

.loading .right {
  top: -2px;
  right: -2px;
  left: auto
}

.loading .left:after,.loading .right:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 17px;
  height: 34px;
  border: 2px solid #fff;
  border-right: 0;
  border-radius: 17px 0 0 17px;
  content: "";
  box-sizing: border-box;
}

.loading .right:after {
  position: absolute;
  display: block;
  border: 2px solid #fff;
  border-left: 0;
  border-radius: 0 17px 17px 0;
  content: ""
}

.loading.swiper-pagination-bullet-active .left:after {
  transform-origin: right center;
  animation-fill-mode: forwards;
  animation-duration: 3.9s;
  animation-timing-function: linear;
  animation-name: spin-left
}

.loading.swiper-pagination-bullet-active .right:after {
  transform-origin: left center;
  animation-duration: 3.9s;
  animation-timing-function: linear;
  animation-name: spin-right
}

@keyframes spin-right {
  0% {
    transform: rotate(180deg)
  }

  50% {
    transform: rotate(360deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes spin-left {
  0% {
    transform: rotate(180deg)
  }

  50% {
    transform: rotate(180deg)
  }

  100% {
    transform: rotate(360deg)
  }
}





/** index-pro  **/
.index-pro{height:850px;}
.case-list.index-pro{ padding-top: 0; }
.index-pro .left,
.index-pro .list{ /*height: calc(100vh - 150px);*/overflow: hidden; }
.index-pro .left{ width: 390px;margin-right: 30px; }
.index-pro .list{ width: calc(100% - 420px); }

.index-pro .left h5{ font-size: 30px; height: 85px;line-height: 85px; background:#1e90c7;color: #fff;text-indent: 43px; }
.index-pro .left .subcat{
    height: calc(100% - 86px);
    border: 1px solid #ebebeb;
    border-width: 0 1px 1px;
}
.index-pro .left .subcat ul li{
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #ebebeb;
}
.index-pro .left .subcat ul li:last-child{ border-bottom: 0; }
.index-pro .left .subcat ul li a{ position: relative;display: block; font-size: 16px;color: #000;text-indent: 43px; }
.index-pro .left .subcat ul li em{ position: absolute;top: 23px;right: 30px; width: 8px;height: 14px; background-position:-192px 0;content: ""; }
.index-pro .left .subcat ul li.on a{ color: #1e90c7; }
.index-pro .left .subcat ul li.on em{ background-position: -179px 0; }
.index-pro .list ul li{
    position: relative;
    float: left;
    width: calc((100% / 3) - 14px);
    height: 350px;
    margin-bottom: 20px;
    text-align: center;
    overflow: hidden;
    margin-right:20px;
}
.index-pro.caseall .list ul{display:none}
.index-pro.caseall .list ul li{ height: 100%; }

.index-pro .list ul li .imgs{ position: relative; width: 100%;height: 100%; overflow: hidden; }
.index-pro .list ul li .imgs:after{ display: block; position: absolute;top: 0;left: 0; width:100%;height: 100%; content: "";
    border: 8px solid transparent;z-index: 6;transition: all .3s; }
.index-pro .list ul li img{ display: block;width: 100%;min-height: 376px;height:auto; }
.index-pro .list ul li h5{
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    background: transparent;
    color: #fff;
    font-weight: 600;
}
.index-pro .list ul li p{ margin-top: 10px; }
.index-pro .list ul li:hover .imgs img{ transform: scale(1.5); }
.index-pro .list ul li:hover h5{ opacity: 1;background: rgba(0,0,0,.3); }
.index-pro .list ul li:hover .imgs:after{ border-color:#1e90c7; }


/** index-case **/

.index-case{width: 100%;position: relative;padding:0 1%}
.index-case .comm-title{ padding-bottom: 30px; }
.index-case .list{ position: relative;/*padding: 0 25px;*/ }
.index-case .list .casel-slider{ overflow: hidden; }
.index-case .first{ display: flex;align-items: center;margin-bottom: 30px; }
.index-case .first .imgs img{display: block;width: 100%;height:540px}
.index-case .first .remark .cons{ padding: 0 0 0 40px; }
.index-case .first .remark h5{ font-size: 28px;color: #000; }
.index-case .first .remark .desc{ font-size: 15px;color: #999;margin: 15px 0 40px;line-height: 24px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.index-case .first .remark em{
    display: inline-block;
    width: 38px;height: 38px;
    background-position: -162px -21px;
    margin-right: 10px;
    vertical-align: -13px;
}

.thumbs-slider .swiper-slide{ float: left; width: calc((100% / 5) - 20px);margin-right: 25px; }
.thumbs-slider .swiper-slide img{height:250px; }
.thumbs-slider .swiper-slide:last-child{ margin-right: 0; }
@media screen and (max-width: 1366px){
    .index-case .list{ padding: 0; }
    .index-case .first{ height: 300px;overflow: hidden; }
    .index-case .first .remark .desc{ margin: 15px 0 20px;-webkit-line-clamp: 6; }
}



/** index-about **/
.index-about .container{ padding: 0; }
.index-about .intro{ padding: 40px 0 20px; }
.index-about .ltxt{ width: 50%; }
.index-about .ltxt .cons{ padding: 0 15px 0 55px; margin-left: var(--wleft); }
.index-about .ltxt .cons h5{ font-size: 36px;color: #000; }
.index-about .ltxt .cons p{ font-size: 16px;line-height: 28px;padding:5px 0 10px; }
.index-about .ltxt .cons img{ position: relative; z-index: 15; }
.index-about .ltxt .cons .moress{ margin: 30px 0 0; }
.index-about .rimg{ width: 50%; position: relative; }
.moress {
    display: block;
    width: 105px;
    height: 31px;
    line-height: 31px;
    text-align: center;
    border: 1px solid #1e90c7;
    color: #1e90c7;
    border-radius: 10px;
    margin: 30px auto 0;
}
/** module-case **/





/*首页新闻*/

.index-news {
    height: auto;
    overflow: hidden;
    padding:30px;
    margin-bottom: 50px;
}


.news_roll {width:100%; height:auto; position:relative;}
.news_roll ul{ position:relative;margin-bottom: 0px;}
.news_roll ul li{ position:absolute; z-index:1;width:100%; height:auto;overflow: hidden;}
.news_roll ul li a{display: block;position: relative;}
.news_roll ul li img{transition: all 1s ease;width: 100%;height: 100%;object-fit: cover;left: 0;position: absolute;}
.in07a{position: absolute;z-index: 3;bottom:0;left:0;background: linear-gradient(to top, rgba(0,0,0,1) ,rgba(0,0,0,0.6)20%, rgba(255,255,255,0)40%);
	width: 100%;height: 100%;color: #fff;-webkit-transition: .4s;padding: 40% 4% 4% 4%;}
.in07a span{display: block;font-family: fz;}
.in07a strong{display: block;}
.in07a span b{font-size:44px;}
.index-news .newslist  li{height: auto;overflow: hidden;transition:.4s;border-bottom: 1px dashed #e2e2e2;padding:1.75rem;}
.index-news .newslist  li a{display: block;}
.newsfont a{display: block;height: auto;overflow: hidden;}
.infonta{float: left;height: auto;overflow: hidden;width: 74%;}
.infonta span{font-size: 18px;line-height: 30px;display: block; color: #333;}
.infonta p{display: block;line-height: 25px;color: #777;margin-top:8px;}
.index-news .newslist  li:hover {background:#f3f3f3;}
.index-news .newslist  li.active{background:#f3f3f3;}
.index-news .newslist  li.active .riqi{color:#d0121b;}
.timeyy{float: right; display:block; width: 18%;height: 100%;text-align: center;transition:.4s;border-left: 1px solid #e8e8e9;}
.riqi{ display:block;line-height:60px;font-size:48px;font-weight: normal;color: #666666;font-family: fz;}
.yuefen{display: block; font-weight: normal;line-height: 25px;color: #777;font-family: fz;}
.nimgc{display: block;width: 100%;height: 0;padding-bottom: 58%;position: relative;overflow: hidden;}


/*底部*/
.foot{
  width: 100%;
  position: relative;
  background: url("../images/foot.jpg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.f-logo{
  padding: 55px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.flogo{
  float: left;
}
.flogo1{
  float: left;
  position: relative;
}
.flogo1:after{
  display: block;
  content: '';
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  float: right;
  top: 0;
  right: -30px;
  position: absolute;
}
.flogo2{
  float: left;
  margin-left:60px;
}
.flogo2 img{
  display: block;
  margin-top: -5px;
}
.f-link{
  float: right;
  width: 18%;
}
.f-link h3{
  color: rgba(255,255,255,0.6);
  font-weight: bold;
  font-size: 16px;
}
.f-link .shipin:after{
  display: block;
  content: '';
  width: 1px;
  background:  rgba(255,255,255,0.3);
  height: 15px;
  position: absolute;
  right: 0;
  margin-right: -20px;
  top: 8px;
}
.f-link .weixin:after{
  display: block;
  content: '';
  width: 1px;
  background:  rgba(255,255,255,0.3);
  height: 15px;
  position: absolute;
  right: 0;
  margin-right: -20px;
  top: 8px;
}
.f-center{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 4%;
}
.f-lianxi{
  width: 30%;
}
.f-lianxi ul li:nth-child(1){
  padding-top: 0;
}
.f-lianxi ul li{
  width: 100%;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  padding: 43px 0;
}
.lx-img{
  width: 55px;
  height: 55px;
  background: #1e90c7;
  border-radius: 50%;
  float: left;
  line-height: 55px;
  text-align: center;
  margin-top: 5px;
}
.lx-img img{
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}
.lx-tit{
  float: left;
  margin-left: 20px;
}
.lx-tit p{
  color: #1e90c7;
  font-size: 16px;
}
.lx-tit h3{
  color: #fff;
  font-size: 32px;
  font-family: ziti1;
  margin-top: -5px;
}
.f-nav{
  width:68%;
}
.f-nav ul{
  display: flex;
  justify-content: space-between;
}
.f-nav ul li>a{
  display: block;
  color: #1e90c7;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
}
.f-nav ul li .fnav-erji>a{
  display: block;
  line-height: 34px;
  color: rgba(255,255,255,0.6);
}
.f-nav ul li .fnav-erji>a:hover{
  color: #fff;
}
.f-admin{
  width: 100%;
  line-height: 72px;
  border-top:1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.f-admin a{
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}




/*产品列表*/

.pro-center{
  padding-top:3%;
  width: 100%;
}
.pro-type{
  width: 12.5%;
  float: left;
}
.pro-type ul li{
  text-align: left;
  margin-bottom: 25px;
}
.pro-type ul li>a{
  position: relative;
}
.pro-type ul li>a:before{
  display: block;
  content: '';
  width: 0;
  height: 20px;
  position: absolute;
  left: 0;
  background: #1e90c7;
  top: -2px;
  transition: all 0.5s;
}
.pro-type ul li span{
  color: #666666;
  font-size: 16px;
  margin-left: 35px;
  position: relative;
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.pro-type ul li span:after{
  display: block;
  content: '';
  position: absolute;
  bottom: -5px;
  width:0;
  height: 14px;
  left: 0;
  transition: all 0.5s;
  background: rgba(136,203,100,0.15);
}
.pro-type ul li.on>a:before{
  width: 4px;
  transition: all 0.5s;
}
.pro-type ul li.on span{
  color: #1e90c7;
  font-weight: bold;
}
.pro-type ul li.on span:after{
  width: 100%;
  transition: all 0.5s;
}
.pro-list{
  width: 85%;
  float: right;
}
.pro-list ul li{
  width: 32%;
  float: left;
  margin-right: 2%;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 2%;
  height: 250px;
  overflow: hidden;
}
.pro-list ul li:nth-child(3n){
  margin-right: 0;
}
.pro-img{
  width: 100%;
  height:100%;
}
.pro-img img{
  display: block;
  width: 100%;
  height:100%;
  object-fit: cover;
  transition: all .5s;
}
.pro-list ul li:hover .pro-img img{
  transform: scale(1.05);
  transition: all .5s;
}
.pro-hover{
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0,0,0,0.5);
  transition: all .5s;
}
.pro-tit{
  margin: 10%;
  position: relative;
  height: 80%;
  width: 80%;
}
.pro-tit h3{
  color: #fff;
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  font-weight: bold;
}
.pro-tit h3:before{
  display: block;
  content: '#';
  color: #e89100;
  font-size: 22px;
}
.pro-tit p{
  color: #fff;
  font-size: 14px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.pro-tit p:before{
  display: block;
  content: '';
  width: 36px;
  height: 3px;
  background: #de8d12;
  margin-bottom: 15px;
}
.pro-list ul li:hover .pro-hover{
  opacity: 0;
  transition: all .5s;
}

.p-type{
  word-break: break-all;
  z-index: 100;
  position: -webkit-sticky;
  position: sticky;
}
.p-type.fixed {
  top: 180px;
}
.p-type ul li:hover>a:before{
  width: 4px;
  transition: all 0.5s;
}
.p-type ul li:hover span{
  color: #1e90c7;
  font-weight: bold;
}
.p-type ul li:hover span:after{
  width: 100%;
  transition: all 0.5s;
}
.p-type ul li.active>a:before{
  width: 4px;
  transition: all 0.5s;
}
.p-type ul li.active span{
  color: #1e90c7;
  font-weight: bold;
}
.p-type ul li.active span:after{
  width: 100%;
  transition: all 0.5s;
}
.p-type ul li .pro-erji a{
  display: block;
  color: #666;
  font-size: 16px;
  text-indent: 8px;
  margin-top: 20px;
}
.p-type ul li .pro-erji a:before{
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  background: #666;
  border-radius: 50%;
  float: left;
  margin-left: 40px;
  margin-top: 10px;
}
.p-type ul li .pro-erji a:hover{
  color: #1e90c7;
}
.p-type ul li .pro-erji a:hover:before{
  background: #1e90c7;
}
.p-type ul li .pro-erji a.active{
  color: #1e90c7;
}
.p-type ul li .pro-erji a.active:before{
  background: #1e90c7;
}
.p-list{
  width: 85%;
  float: right;
}
.p-list ul li{
  width: 32%;
  float: left;
  margin-right: 2%;
  margin-bottom: 2%;
  position: relative;
  background: #f5f5f5;
}
.p-list ul li:nth-child(3n){
  margin-right: 0;
}
.p-list ul li .p-img{
  width: 100%;
  height: 265px;
  overflow: hidden;
  position: relative;
}
.p-list ul li .p-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.p-tit{
  padding: 5%;
  position: relative;
}
.p-list ul li .p-tit:after{
  display: block;
  content: '';
  width:50px;
  height: 50px;
  background: url("../images/c1.png") no-repeat center center;
  position: absolute;
  right: 5%;
  top: -25px;
  z-index: 100;
}
.p-list ul li:hover .p-tit:after{
  background: url("../images/c2.png") no-repeat center center;
}
.p-list ul li:hover .p-img img{
  transform: scale(1.05);
  transition: all .5s;
}
.p-tit h3{
  color: #282828;
  font-size: 20px;
  font-weight: bold;
}
.p-list ul li:hover{
  background: #1e90c7;
}
.p-list ul li:hover h3{
  color: #fff;
}



.product-detail{
   width: 85%;
  float: right; 
  padding:0px 30px 30px;
}



.product-detail .container {
	margin-top: 20px;
	padding-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 1200px;
}
.product-detail .cpright {
	width: 925px;
	padding: 0 25px;
	padding-bottom: 25px;
	background: #fff;
	float: right;
}
.product-detail .cpright a {
	color: #204c97;
}
.product-detail .rtop {
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 9px;
	border-bottom: 1px solid #204c97;
}
.product-detail .rtop h5 {
	margin:0; 
	padding:0;
	float: left;
	padding-left: 26px;
	font-size: 18px;
	color: #204c97;
	font-weight: normal;
	line-height: 22px;
	background: url(/skin/zujianku/images/tb365.png) no-repeat;
}
.product-detail .rtop span {
	float: right;
	color: #204c97;
	font-size: 16px;
}

.product-detail .prodetailsinfo {
     display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
}

.product-detail .prodetailsinfo .photo {
        flex: 0 0 45%;
        max-width: 45%;
     padding-right: 15px;
    padding-left: 15px;
}

.product-detail .prodetailsinfo .photo img{width:100%;}


/*相册*/



.product-detail .prodetailsinfo .photo  .rect-100{padding-bottom:100%;position:relative;display:block;width:100%;height:0;overflow:hidden;}

.product-detail .prodetailsinfo .photo .album{width:100%;overflow:hidden;}
.product-detail .prodetailsinfo .photo .album::after{position:absolute;right:6%;top:6%;content:'';background:url(https://www.noblelift.cn/resources/web/img/pro_detail01_3.jpg) no-repeat center;background-size:cover;width:84px;height:26px;display:none;}
.product-detail .prodetailsinfo .photo .album .big_img{border:2px solid #d7d7d7;}
.product-detail .prodetailsinfo .photo .album .full{position:absolute;left:0;top:0;width:100%;height:100%;*height:auto;}
.product-detail .prodetailsinfo .photo .thumb .swiper{overflow:hidden;position:absolute;right:0;top:50%;transform:translateY(-50%);width:100%;}
.product-detail .prodetailsinfo .photo .thumb .swiper-slide{cursor:pointer;}
.product-detail .prodetailsinfo .photo .thumb .swiper-slide:first-child{margin-top:8px;}
.product-detail .prodetailsinfo .photo .thumb .item{border:2px solid #d7d7d7;transition:all 0.2s ease;}
.product-detail .prodetailsinfo .photo .thumb .item:hover{border-color:#fe4f00;}
.product-detail .prodetailsinfo .photo .thumb .item.on{border-color:#fe4f00;}

.product-detail .swiper-button-prev{position: absolute;left:10px;top:50%;width: 35px;height:35px;background: url(../images/pro_btn1.png) no-repeat center; z-index:99;}
.product-detail .swiper-button-prev:hover{cursor:pointer}
.product-detail .swiper-button-next{position: absolute;right:10px;top:50%;width: 35px;height:35px;background: url(../images/pro_btn2.png) no-repeat center; z-index:99;}
.product-detail .swiper-button-next:hover{cursor:pointer}

.product-detail .prodetailsinfo .photo .thumb .swiper-slide:first-child{margin-top:0;}

.product-detail .prodetailsinfo .photo .thumb{width:100%;height:auto;margin:30px auto;}
.product-detail .prodetailsinfo .photo .thumb .swiper{position:static;transform:none;}
.product-detail .prodetailsinfo .photo .thumb .swiper-slide{width:100px!important;margin-right:20px;}

.product-detail .prodetailsinfo .photo .thumb .full{position:absolute;left:0;top:0;width:100%;height:100%;*height:auto;}



@media only screen and (max-width: 992px){
.product-detail .prodetailsinfo .photo{width:100%;margin-bottom:30px;}
}
@media only screen and (max-width: 760px){
*{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
.product-detail .swiper-button-prev{height:20px;font-size:14px;}
.product-detail .swiper-button-next{height:20px;font-size:14px;}
.product-detail .prodetailsinfo .photo .thumb .swiper-slide:first-child{margin-top:0px;}
}
@media only screen and (max-width: 480px){
.product-detail .prodetailsinfo .photo .album{width:100%;}
.product-detail .prodetailsinfo .photo .thumb{width:100%;}
}

/*相册*/




.product-detail .prodbaseinfo_a {
        flex: 0 0 55%;
        max-width: 55%;
        padding-top: 15px;
       padding-right: 15px;
      padding-left: 15px;
}
.product-detail .proa_a{
     height: auto;
    overflow: hidden;
}

.product-detail .proa_a .proa_title{
margin-top:5px ;   
font-size:32px;
line-height:45px;
}

.product-detail .proa_a .proa_desc{
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    line-height: 30px;
    color: #777;
    padding: 10px;
    margin-top:30px;
}

.product-detail .proa_b {
     display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 0;
 
}


.product-detail .proa_b li{line-height: 47px;margin-right:30px}

.product-detail .proa_b li em {
    display: block;
    float: left;
    width: 47px;
    height: 47px;
    border: 1px solid rgba(0, 0, 0, .2);
    text-align: center;
    margin-right: .75rem;
    font-size: 15px;
    border-radius: 5px;
}

.product-detail .proa_b li em i{font-size:28px;}

.product-detail .proa_c{display: flex;align-items:center;}
.product-detail .proa_c a{display: flex;align-items: center; justify-content: center; width:140px;line-height:42px;text-align:center;border:1px solid #1e90c7;background:#fff;color:#1e90c7;margin-right:.75rem;transition:.4s;}
.product-detail .proa_c a:hover{background:#1e90c7;color:#fff;}

.product-detail .proa_c i {display: inline-block; margin-right:5px;}

.product-detail .mod_goods_info{padding-top:30px}


.product-detail .h2_title{width: 94%;line-height: 45px;color: #1e90c7;position: relative;border-bottom: 2px solid #dedede; }
.product-detail .h2_title strong{font-size: 18px;display: block;line-height: 45px;}
.product-detail .h2_title a{color: #1e90c7;transition:.4s;}
.product-detail .h2_title a:hover{color: #055fcb}
.product-detail .h2_title::before {position: absolute;content: "";width: 90px;bottom: -2px;height: 2px;background: #1e90c7;left:0;}
.product-detail .mod_goods_info .content p{line-height: 30px;color: #777;}
.product-detail .mod_goods_info .prob ul{text-align: center;}
.product-detail .mod_goods_info .prob_a{height: auto;overflow: hidden; background: #f4f5f7;padding:15px}

.mod_goods_info{margin-top:10px}
.mod_goods_info ul{text-align:center;}
.mod_goods_info{height:auto;overflow:hidden;}

.mod_goods_info .content{line-height: 30px;color: #777;padding:10px 30px}
.mod_goods_info .content img{max-width:100% !important;height:auto;display:block;margin:10px auto}
.mod_goods_info .supper{margin-top:15px}
.mod_goods_info .supper li{-ms-flex-preferred-size: 0;flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1;max-width: 100%;;margin-bottom:10px;padding:15px;}
.mod_goods_info .supper li em{display:block;width:85px;line-height:85px;border-radius:80px;margin:0 auto;background:#1e90c7;}
.mod_goods_info .supper li i{font-size:36px;color:#fff;}
.mod_goods_info .supper li strong{display:block;font-weight:600;margin-top:5px;font-size:18px;line-height:35px}
.mod_goods_info .supper li p{color:#7c7c7c;line-height:25px;}


.pf_18{font-size:18px;line-height:35px;}
.pt_b{width:94%;line-height:45px;color:#003b82;position:relative;border-bottom:2px solid #dedede;}
.pt_b strong{display:block;line-height:45px;}
.pt_b::before{position:absolute;content:"";width:90px;bottom:-2px;height:2px;background:#003b82;left:0;}
.pimga{display:block;width:100%;height:0;padding-bottom:75%;position:relative;overflow:hidden;}
.pimga img{width:100%;height:100%;object-fit:cover;left:0;position:absolute;transition:0.3s;}
.pfonta{position:absolute;z-index:2;color:#fff;bottom:0;width:100%;line-height:45px;}
.pfonta::before{position:absolute;content:"";display:block;z-index:-1;color:#fff;bottom:0;width:100%;height:100%;line-height:100%;border-top:80px solid transparent;border-right:100px solid transparent;border-left:1000px solid rgba(30,144,199,.8);transition:.4s;}
.pfonta::after{position:absolute;content:"";left:0;bottom:0;height:3px;background:#ffa41f;width:0px;z-index:3;transition:.4s;}
.pfonta span{display:block;transition:.4s;padding-left: 15px;}
.pfonta p{height:0px;overflow:hidden;transition:.4s;font-family:fz;padding-left: 15px;}
.pfonta p i{display:inline-block}
.recommend .swiper-container{height:auto;overflow:hidden;}
.recommend .swiper-slide a{display:block;position:relative;border-radius:5px;height:auto;overflow:hidden;}
.recommend .swiper-slide a{display:block;position:relative;}
.recommend .swiper-slide a img{display:block;max-width:100%;}
.recommend .swiper-slide em{position:absolute;width:81px;height:0px;top:0;left:0;padding:0px;z-index:3;transition:.4s;overflow:hidden;display:block;background:url(http://zyyljt.xx106.cxjs.net.cn/static/index/zm001/images/proa.png) center no-repeat;}
.recommend .swiper-slide em i{color:#fff;font-size:22px;}
.recommend .swiper-slide a:hover .pfonta::before{border-top:310px solid rgba(30,144,199,.9);}
.recommend .swiper-slide a:hover em{height:81px;padding:.5rem;}
.recommend .swiper-slide a:hover span{font-size:22px;}
.recommend .swiper-slide a:hover p{height:35px;line-height:35px;}
.recommend .swiper-slide a:hover .pfonta::after{width:100%;}


@media (max-width: 576px){
.mf_16{font-size:16px;line-height:30px;}
.pfonta::before{border-top:40px solid transparent;border-right:50px solid transparent;border-left:500px solid rgba(30,144,199,.8);}
.pfonta p{display:none;}
.pt_b{width:100%;}
}
@media (min-width: 576px) and (max-width: 768px){
.pfonta::before{border-top:40px solid transparent;border-right:50px solid transparent;border-left:500px solid rgba(30,144,199,.8);}
.pfonta p{display:none;}
.pt_b{width:100%;}
}
@media (min-width: 768px) and (max-width:992px){
.pt_b{width:100%;}
}








/*关于我们*/
.about_menu {
  background-color: #fff;
  text-align: center;
  line-height: 100px;
  position: relative;
  z-index: 1234;
  height: 100px;
  width: 100%;
  overflow: hidden;
}
.about_menu a {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  height: 100%;
  margin-left: 40px;
  margin-right: 40px;
   color: #333;
}
.about_menu a:After {
  position: absolute;
  content: '';
  width: 0px;
  height: 4px;
  background: #1e90c7;
  left: 50%;
  bottom: 25px;
  -webkit-transition: all 0.65s ease;
  transition: all 0.65s ease;
}
.about_menu a:hover {
  color: #1e90c7;
}
.about_menu a:hover:After {
  position: absolute;
  content: '';
  width: 40px;
  height: 4px;
  background: #1e90c7;
  left: 50%;
  margin-left: -20px;
  bottom: 25px;
}
.about_menu .newsactive {
  color: #1e90c7;
}
.about_menu .newsactive:After {
  position: absolute;
  content: '';
  width: 40px;
  height: 4px;
  background: #1e90c7;
  left: 50%;
  margin-left: -20px;
  bottom: 25px;
}

.about_us_company{padding:15px 3%}

.about_us_company .text {
  display: flex;
     width: 90%;
     margin: 0 auto;
}

.about_us_company .text-left {

  flex: 0 0 60%;

}

.about_us_company .text-left p{
line-height: 26px;
margin-bottom: 5px;
padding: 15px;;
}

.about_us_company .text-rigt {
  margin-right: 30px;
  flex: 0 0 45%;
  text-align: right; 
}

.about_us_company .text-rigt img {
  max-width: 100%; 
  height: auto;
  display: block;
}


.about_us_company .icon ul {
  display: flex;
  justify-content: space-between; 
  align-items: center;       
  margin:30px auto;
  padding: 0;
  list-style: none; 
}



.about_us_company .icon ul li {
  flex: 1; 
  text-align: center;     
  margin: 0 5px;          
}

.about_us_company .icon ul li div {
    margin: 0 auto;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1px solid #1e90c7;
    position: relative;
}    



.about_us_company .icon ul li div i{
   font-size: 45px;
    line-height: 88px;
    color: #1e90c7;
    position: relative;
    z-index: 6;   
}


.about_us_company .icon ul li div :after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  content: '';
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  box-shadow: 0 0 0 2px #1e90c7;
  opacity: 0;
  -webkit-transform: scale(.9);
  -moz-transform: scale(.9);
  -ms-transform: scale(.9);
  transform: scale(.9);
}
@-webkit-keyframes sonarEffect {
  0% {
      opacity:.3
  }
  40% {
      opacity:.5;
      box-shadow:0 0 0 2px rgba(255, 255, 255, .1), 0 0 10px 10px #15A9A9, 0 0 0 10px rgba(255, 255, 255, .5)
  }
  100% {
      box-shadow:0 0 0 2px rgba(255, 255, 255, .1), 0 0 10px 10px #15A9A9, 0 0 0 10px rgba(255, 255, 255, .5);
      -webkit-transform:scale(1.5);
      opacity:0
  }
}
@-moz-keyframes sonarEffect {
  0% {
      opacity:.3
  }
  40% {
      opacity:.5;
      box-shadow:0 0 0 2px rgba(255, 255, 255, .1), 0 0 10px 10px #15A9A9, 0 0 0 10px rgba(255, 255, 255, .5)
  }
  100% {
      box-shadow:0 0 0 2px rgba(255, 255, 255, .1), 0 0 10px 10px #15A9A9, 0 0 0 10px rgba(255, 255, 255, .5);
      -moz-transform:scale(1.5);
      opacity:0
  }
}
@keyframes sonarEffect {
  0% {
      opacity:.3
  }
  40% {
      opacity:.5;
      box-shadow:0 0 0 2px rgba(255, 255, 255, .1), 0 0 10px 10px #15A9A9, 0 0 0 10px rgba(255, 255, 255, .5)
  }
  100% {
      box-shadow:0 0 0 2px rgba(255, 255, 255, .1), 0 0 10px 10px #15A9A9, 0 0 0 10px rgba(255, 255, 255, .5);
      transform:scale(1.5);
      opacity:0
  }
}

.about_us_company .icon ul li p {
    font-size: 22px;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 20px;
    
}


 .about_culture {
 background-color: #f6f6f6;
  padding: 1px 0;
    overflow: hidden;
 }

    .about_culture_slide{
    height: 300px;
    position: relative;
    overflow: hidden;
    }

        .about_culture .swiper-container {
            height: 240px !important;
        }

        .about_culture .swiper-slide {
            text-align: center;
            position: relative;
        }

        .about_culture .swiper-slide .bg {
            position: relative;
            height: 100%;
            margin: 10px;
            background-size: cover;
            background-position: center;
        }

        .about_culture .swiper-slide .bg:hover img {
            -webkit-transform: scale(1.15);
                    transform: scale(1.15);
        }

        .about_culture .swiper-slide .bg img {
            width: 100%;
            max-height: 100%;
            -webkit-transition: all 0.5s ease;
                    transition: all 0.5s ease;
        }

        .about_culture .swiper-slide h5 {
            padding-top: 50px;
            padding-bottom: 12px;
            position: relative;
            color: #fff;
            font-size: 24px;
        }

        .about_culture .swiper-slide h5::after {
            position: absolute;
            content: '';
            width: 160px;
            height: 1px;
            background: #ffffff;
            left: 50%;
            margin-left: -80px;
            bottom: 0px;
        }

        .about_culture .swiper-slide p {
            font-size: 18px;
            line-height: 28px;
            color: #fff;
            max-width: 300px;
            margin: 24px auto;
        }

        .about_culture .swiper-slide:nth-child(odd) .bg {
            background-color: #FBA844;
        }

        .about_culture .swiper-slide:nth-child(even) .bg {
            background-color: #1e90c7;
        }

        .about_culture .last {
 
        }

        .about_culture .last h5 {
            position: relative;
            padding-bottom: 12px;
            font-size: 30px;
            color: #1e90c7;
            text-align: center;
        }

        .about_culture .last h5::after {
            position: absolute;
            content: '';
            width: 40px;
            height: 4px;
            background: #1e90c7;
            left: 50%;
            margin-left: -20px;
            bottom: 0;
        }

        .about_culture .last ul {
            padding: 10px;
        }

        .about_culture .last ul li {
            width: 33.3%;
            text-align: center;
            float: left;
            height: 145px;
            border-radius: 8px;

            box-sizing: border-box;
        }

        .about_culture .last ul li:hover {
            -webkit-box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.08);
                    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.08);
        }

        .about_culture .last ul li p {
            font-size: 18px;
            color: #666;
            padding-top: 20px;
        }

        .about_culture .last ul li span {
            margin-top: 25px;
            display: block;
        }

        .about_culture .last ul li span i {
            font-size: 45px;
            color: #1e90c7;
        }


.honor {
  background-color: #f6f6f6;
  padding-top: 1px;
  padding-bottom: 1px;
  height: 580px;
  overflow: hidden;
}

.honor .pagination2 {
  text-align: center;
}
.honor .pagination2 .swiper-pagination-switch {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  margin: 0 8px;
}
.honor .swiper-container {
  padding: 15px 0 15px 0;
}



.honor .swiper-slide > div {
  width: 100%;

  height: 100%;
  text-align: center;
  background-color: #fff;
  position: relative;
}
.honor .swiper-slide > div:hover figcaption {
  color: #1e90c7;
}
.honor .swiper-slide > div:hover figure {
  -webkit-box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.08);
}
.honor .swiper-slide > div:last-child {
  margin-right: 0;
}
.honor .swiper-slide > div:last-child figure {
  margin-right: 0;
}
.honor .swiper-slide > div figure {
  background-color: #F2F1F1;

}
.honor .swiper-slide > div figure div {
  height: 360px;
  position: relative;
}
.honor .swiper-slide > div figure div img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 100%;
}
.honor .swiper-slide > div figure figcaption {
  height: 82px;
  line-height: 82px;
  font-size: 22px;
  letter-spacing: 1px;
  color: #333;
  background-color: #fff;
}
.honor .swiper-slide-active {
  margin-left: 0;
}

.show{
  padding-top: 1px;
  padding-bottom: 1px;
  background-color: #f6f6f6;
}
.show .show-slide{
  margin: 35px;
  margin-right: 60px;
  background-color: #fff;
}
.show .show-slide .pagination3 {
  text-align: center;
}
.show .show-slide .pagination3 .swiper-pagination-switch {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  margin: 0 8px;
}
.show .show-slide .swiper-container {
  height: 900px;
  padding: 14px 0 14px 0;
}
.show .show-slide .swiper-container .swiper-slide {
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.show .show-slide .swiper-container .swiper-slide > div {
  float: left;
  width: 25%;
  margin-bottom: 14px;
  text-align: center;
}
.show .show-slide .swiper-container .swiper-slide > div figure {
  background-color: #F2F1F1;
  margin-left: 10px;
  margin-right: 10px;
}
.show .show-slide .swiper-container .swiper-slide > div:hover figure {
  -webkit-box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.08);
}
.show .show-slide .swiper-container .swiper-slide > div:hover figcaption {
  color: #1e90c7;
}
.show .show-slide .swiper-container .swiper-slide > div:nth-of-type(3n) {
  margin-right: 0;
}
.show .show-slide .swiper-container .swiper-slide > div div {
  height: 360px;
  overflow: hidden;
}
.show .show-slide .swiper-container .swiper-slide div div:hover img{
  transform: scale(1.1)
}
.show .show-slide .swiper-container .swiper-slide > div div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     transition: all .6s ease
}
.show .show-slide .swiper-container .swiper-slide > div figcaption {
  font-size: 22px;
  color: #333;
  line-height: 82px;
  height: 82px;
  background-color: #fff;
}
.show .show-slide .swiper-container .swiper-slide-active {
  opacity: 1;
}


.news{
  width: 85%;
  float: right;
}
.news ul {
  position: relative;
  z-index: 999;
}
.news ul li {
  height: 250px;
  padding: 10px 30px;
  background-color: #fff;
  border-bottom: 1px solid #f5f5f5;

}
.news ul li:hover {
  -webkit-box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.05);
}

.news ul li .litpic {
  float: left;
  width: 30%;
  height: 225px;
  padding: 10px;

}


.news ul li > div:first-child a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center
}
.news .news_list_right {
  width: 60%;
  height: 250px;
  float: left;
  position: relative;
  padding-left: 60px;

}

.news .news_list_right h4 {
  padding-top: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news .news_list_right h4 a {
  font-size: 24px;
  font-weight: 600;
   color: #333;
}
.news .news_list_right .time {
  font-size: 16px;
  color: #999;
  margin-top: 5px;
}
.news .news_list_right .news_des {
  font-size: 16px;
  color: #666;
  line-height: 31px;

}
.news .news_list_right > a {
  display: inline-block;
  width: 134px;
  height: 44px;
  background: rgba(51, 51, 51, 0);
  border: 1px solid #cccccc;
  text-align: center;
  line-height: 44px;
  color: #666;
  font-size: 16px;
  position: absolute;
  bottom: 20px;
  left: 60px;
}
.news .news_list_right > a:hover {
  background-color: #1e90c7;
  border: 1px solid #1e90c7;
  color: #fff;
}



.case_content{
      width: 83%;
    float: right;
    line-height:26px;
    padding:5px 30px;   
}


.case-left {
    width: 60%;
    float: left;
}

.case-left img{
    width: 100%;
    display: block;
    margin: 10px auto;
}

.case-left div {
    display: block;
    position: relative;
    width: 100%;
}

.case-left div::after {
    display: block;
    content: "© 广州蓝潮水上乐园设备有限公司";
    position: absolute;
    color: rgb(255, 255, 255);
    font-size: 14px;
    bottom: 0px;
   left: 50%;
    transform: translateX(-50%); 
    z-index: 100;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.5);
}

.case-right {
    width: 40%;
    float: left;
}

.case_title{text-align:center}

.case_title h3{font-size: 24px;
    color: #323232;
    line-height: 24px;
    font-weight: bold;
    margin: 25px 0 10px;
}

.case-right .case_txt p{
    padding:0 15px;
    margin-top:15px ;
    font-size: 16px;
    line-height: 26px;
    
}

.case-right .pre,.case-right .next{
  margin:30px auto;
  padding: 10px 15px;
  margin-bottom: 20px;
  background: #ccc;
  width: 80%;
}
.case-right .pre a,.case-right .next a{
  display: block;
  color: #fff;
  
}
.case-right .pre:hover,.case-right .next:hover{
  background: #1e90c7;
}






.news_content{
     width: 83%;
    float: right;
    line-height:26px;
    padding:5px 30px;
}

.news_content  img{
display: block;
margin:5px auto;
}

.news_content p{
margin-bottom: 5px;
}

 .news_content .news_title {
  text-align: center;
}
 .news_content .news_title h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
}
 .news_content .news_title p {
  padding-top: 16px;
  line-height: 16px;
  padding-bottom: 40px;
  color: #999;
}
.news_content .news_title p span {
  margin-left: 12px;
  margin-right: 12px;
}


.news_content .content span,.news_content .content p{font-size:16px;line-height:32px}

.news_content .news_footer::before {
  width: 100%;
  height: 80px;
  bottom: 120px;
  left: 0;
  position: absolute;
  content: '';
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
}


.news_content .news_footer {
    width: 100%;
    position: relative;
    height: 120px;
    line-height: 120px;
}

.news_content .news_footer a {
  font-size: 16px;
  color: #333;
}
.news_content .news_footer p:hover {
  color: #1e90c7;
}
.news_content .news_footer p:hover a {
  color: #1e90c7;
}

.news_footer .pre{
    float: left;
    width: 50%;
}

.news_footer .next{
    float: left;
    width: 50%;
}

.news_footer .goback {
    position: absolute;
    right: 30px;
    top: 0;
    height: 120px;
    line-height: 120px;
    margin-right: 8px;

}

.news_footer .goback a{
   color:#999;
  border: 1px solid #f5f5f5;
}



/*support-right*/


.inner-support{
  width: 100%;
  position: relative;
  padding: 3% 0;
  min-height:500px;
}



/*

.support-right p{font-size: 16px;line-height: 32px;margin-bottom: 15px;}

.support-right img{display:block;margin:auto}*/


.support-left{
  width: 14.5%;
  float: left;
  word-break: break-all;
  z-index:100;
  position: -webkit-sticky;
  position: sticky;
  display: block!important;
}
.support-left.fixed{
  top:180px;
}
.support-left ul li{
  text-align: left;
  margin-bottom: 40px;
}
.support-left ul li a{
  position: relative;
}
.support-left ul li a:before{
  display: block;
  content: '';
  width: 0;
  height: 20px;
  position: absolute;
  left: 0;
  background: #1e90c7;
  top: -2px;
  transition: all 0.5s;
}
.support-left ul li span{
  color: #666666;
  font-size: 16px;
  margin-left: 35px;
  position: relative;
}
.support-left ul li span:after{
  display: block;
  content: '';
  position: absolute;
  bottom: -5px;
  width:0;
  height: 14px;
  left: 0;
  transition: all 0.5s;
  background: rgba(136,203,100,0.15);
}
.support-left ul li.current a:before{
  width: 4px;
  transition: all 0.5s;
}
.support-left ul li.current a span{
  color: #1e90c7;
  font-weight: bold;
}
.support-left ul li.current a span:after{
  width: 100%;
  transition: all 0.5s;
}




.support-right{width: 82%;float: right;padding:0px 30px}

.support1 {}

.support1 h4{ margin-top: 10px; color: #666; margin-bottom: 15px;width: 100%; height: auto; overflow: hidden; text-align:center;   font-size: 20px;font-weight: 600;}
.support1 ul{width: 100%; height: auto; overflow: hidden; padding:15px  30px}
.support1 ul::after {
    content: "";
    display: table;
    clear: both;
}

.support1 ul li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 16px;
}

.support1 ul li i {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: red;
    color: white;
    text-align: center;
    line-height: 25px;
    margin-right: 10px;
}




.support2 {}


.support2{width: 100%;height: auto; overflow: hidden;}
.support2 ul li{ width: 100%;float: left;height: auto;
    overflow: hidden; margin-top:15px; margin-bottom: 15px;}
.support2 ul li span{float: right; width: 50%;margin-top: -60px;}
.support2 ul li .wzbox{float: left;width: 50%;}
.support2 ul li span  img {
	    max-width: 100%;
		width: 100%;
		border: 0 none;
		vertical-align: middle;
	}
.support2 ul li:nth-child(2n+1) span{
	float: left; width: 50%;margin-top: -60px;
}
.support2 ul li:nth-child(2n+1) .wzbox{float:right;width: 45%; margin-left: 5%;}

.support2 ul li h3{
	line-height: 80px;font-size: 20px;position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
	}

.support2 ul li h3 i{
	    display: inline-block;
	    color: #cf1919;
	    font-size: 40px;
	    font-weight: bolder;
	    position: relative;
		float: left;
}
.support2 ul li h3>div{
	z-index:2;
	position: absolute;
	    padding-left: 30px;
}

.support2 ul li h3 i:after{
	    display: inline-block;
	    width: 0;
	    height: 0;
	    border-left: 100px solid transparent;
	    border-right: 100px solid transparent;
	    border-bottom: 60px solid #fff;
	    position: absolute;
	    content: "";
	    bottom: -10px;
	    right: -130px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.support2 ul li p{line-height: 30px;font-size: 16px;}



.support3 .desc{line-height:32px;font-size:16px;}

.support3 .main{padding:15px 30px;}


.support3 .warp {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 30px;
}

.support3 .text-section {
    width: 50%;
    padding: 20px;
    border-right: #db4437 1px solid;
    position: relative;
    z-index: 1;
    overflow: visible; /* 确保红点可以溢出显示 */
    --circle-top: 20px; /* 动态控制红点垂直位置 */
}

.text-section .content-block {
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.text-section .content-block:hover {
    background-color: #e0e0e0;
}

/* 动态红点 */
.support3 .text-section::before {
    content: '';
    width: 16px; /* 红点直径 */
    height: 16px;
    background-color: #db4437;
    border-radius: 50%;
    position: absolute;
    top: var(--circle-top, 20px); /* 动态设置垂直位置 */
    right: -1px; /* 红点位置靠右 */
    transform: translate(50%, -50%);
    transition: top 0.3s ease; /* 平滑过渡效果 */
    z-index: 2;
    pointer-events: none; /* 防止红点干扰鼠标事件 */
}

/* 鼠标划过时圆形动态效果 */
.text-section .content-block:hover ~ .text-section::before {
    background-color: #ff6f61; /* 红点颜色变化 */
    transform: translate(50%, -50%) scale(1.2); /* 红点轻微放大 */
}

.support3 .text-section h1 {
    color: #d32f2f;
}

.support3 .text-section h2 {
    border-left: #db4437 5px solid;
    display: block;
    padding: 5px;
    line-height: 16px;
    color: #757575;
    border-bottom: 1px dashed #757575;
    font-size: 18px;
}

.support3 .text-section p {
    margin: 10px 15px 25px;
    line-height: 26px;
}

.support3 .image-section {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.support3 .image-section img {
    width: 100%;
    height: auto;
    display: none; /* 默认不显示图片 */
}

.support3 .image-section img.active {
    display: block;
}








.support4 ul {
		  padding: 10px;
		  margin: 30px auto;
		}
		.support4 ul li {
		  width: 33.3%;
		  text-align: center;
		  float: left;
		  height: 240px;
		  border-radius: 8px;
		  padding-top: 27px;
		}
		
		.support4 ul li:hover {
		  -webkit-box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.08);
		          box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.08);
		}
		.support4 ul li p {
		  font-size: 18px;
		  color: #666;
		  padding-top: 20px;
		}
		.support4 ul li span {
		  margin-top: 25px;
		}
		.support4 ul li span i {
		  font-size: 45px;
		  color: #b92822;
		}

/*联系我们*/
.inner-contact{
  width: 100%;
  position: relative;
  padding: 3% 0;
}

.con-right{
  width: 85%;
  float: right;
 
}
.con1-center{
  padding-top: 5%;
  border-top: 2px solid #1e90c7;
}
.con1{
  padding-bottom: 5%;
  width: 100%;
  background:url("../images/fgx.png") no-repeat center bottom;
}
.con1-left{
  width: 40%;
  float: left;
}
.con1-left ul{
  margin-bottom: 55px;
}
.con1-left ul li{
  width: 100%;
  margin-bottom: 35px;
  color: #999999;
  font-size: 16px;
  padding-left: 30px;
}
.con1-left ul li:nth-child(1){
  background: url("../images/cc1.png") no-repeat center left;
}
.con1-left ul li:nth-child(2){
  background: url("../images/cc2.png") no-repeat center left;
}
.con1-left ul li:nth-child(3){
  background: url("../images/cc3.png") no-repeat center left;
}
.con1-left ul li:nth-child(4){
  background: url("../images/cc4.png") no-repeat center left;
}
.con1-left ul li small{
  padding: 0 15px;
}
.con1-left ul li span{
  color: #303030;
}
.con1-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.con1-1{
  width: 110px;
  text-align: center;
}
.con1-1 .con1-img{
  width: 110px;
  height: 110px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.con1-1 .con1-img img{
  max-width: 100%;
  display: block;
}
.con1-1 p{
  text-align: center;
  color: #999999;
  font-size: 14px;
  line-height: 30px;
}
.con1-right{
  width: 55%;
  float: right;
  height: 390px;
}
.con1-right img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.con2{
  width: 100%;
  padding-top: 5%;
}
.contact-map{
  width: 100%;
  height: 680px;
}
#dituContent{
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1700px) {
    .container{
        width: auto;
        padding:0 4%;
    }
    
} 


/* 超超大设备 */
@media (min-width: 1400px) {
 .nav ul li a{padding: 0 15px;}
  .index-pro .left{ width: 280px;margin-right: 25px; }
  .index-pro .left .subcat ul li{ height: 66px;line-height: 66px; }
  .index-pro .list{ width: calc(100% - 305px); }
  .index-pro .list ul li:nth-of-type(3n){margin-right:0px}; 
    
    
}


@media (min-width: 1200px) and (max-width: 1399px) {
  .logo img{width:80%}  
 .nav ul li a{padding: 0 10px;}
 .ali{padding:0 20px}
 .weixin,.douyin{margin-left:10px}
 
  .index-pro .left{ width: 280px;margin-right: 25px; }
  .index-pro .left .subcat ul li{ height: 66px;line-height: 66px; }
  .index-pro .list{ width: calc(100% - 305px); }
 .index-pro .list ul li img{min-width:335px}
 .thumbs-slider .swiper-slide img{height:220px}
 .news_roll{margin:50px auto}
 .infonta{width:80%}
 .index-news .newslist li{padding:5px}







.news .news_list_right h4 a{font-size:18px}
}

/* 横屏平板 */
@media (min-width: 1025px) and (max-width: 1366px) {
.logo{width:15%}
.logo img{width:150px}
}

/* 竖屏平板 */
@media (min-width: 768px) and (max-width: 1024px) {
 .container{padding:0px}  
.logo{width:30%} 
.logo img{width:140px}
.nav{display:none}
.nav ul li a{font-size:14px}
.top-right{width:70%} 
.top-link{width:40px;margin:15px auto}
.index-pro .left{width:260px;margin-right:10px}
.index-pro .list{width: calc(100% - 270px);}
.index-pro .list ul li{width: calc((100% / 2) - 15px);height:225px;margin-bottom:20px}
.index-pro .list ul li:nth-of-type(2n){margin-right:0px;}

.index-case .first .remark .cons{padding:0 0 0 10px}
.thumbs-slider .swiper-slide img{height:165px}
.about_us_company{padding:5px 15px}
.about_us_company .text{display:block}
.about_us_company .text-left{width:100%}

.about_us_company .text-rigt{width:100%}

.about_us_company .icon ul {
    flex-wrap: wrap; 
}
.about_us_company .icon ul li {
    flex: 0 0 calc(33.33% - 10px); 
 
}

.pro-type{width:100%;padding:0px 15px}
.pro-type ul li{width:33%;float:left}
.p-list{width:100%;padding:0px 15px}
.p-tit h3{font-size:16px}
.product-detail{width:100%;padding:0 15px}
.product-detail .prodbaseinfo_a{padding-top:0px}
.product-detail .proa_a .proa_title{font-size:20px}
.product-detail .proa_a .proa_desc{margin-top:15px}
.product-detail .proa_b{padding:15px}
.product-detail .proa_b li{margin:15px}
.recommend {margin-bottom:30px}


.news{width:100%;padding:15px}
.news ul li{padding:10px}
.case_content{width:100%;padding:5px 15px}
.case-left div::after{font-size:12px}
.con-right{width:100%;padding:15px}




    .lx-img {
        float: none;
        margin: 0 auto;
        display: block;}
        
         .lx-tit {
        float: none;
        margin-left: 0;
        text-align: center;
    }
    
.lx-tit h3{font-size:18px;margin-top: 5px;}
.lx-tit p {margin-top: 10px;}
.f-center {display: block;padding-top: 20px}


    .f-lianxi{ width: 100%;margin-bottom: 50px;}
    .f-lianxi ul:after{
        display: block;
        clear: both;
        content: '';
    }
    .f-lianxi ul li {
        float: left;
        width: 32%;
        margin-right: 2%;
        padding: 0 0 30px 0;
    }
    .f-lianxi ul li:last-child{
        margin-right: 0;
    }
.f-nav{width:100%;padding: 0 15px;}

.news .news_list_right{width:70%;padding-left:10px}
.news .news_list_right .news_des{line-height:26px}
.news .news_list_right h4 a{font-size:18px}
.news .news_list_right > a{right:5px;left: unset; /* 让 left 失效 */}

.news_footer .pre,.news_footer .next{width:100%;height:50px;line-height:50px}

}


   

